【笔记】Afrog学习笔记

前言

A Security Tool for Bug Bounty, Pentest and Red Teaming(Github

下载项目

直接下载编译好的可执行文件

1
2
3
wget https://github.com/zan8in/afrog/releases/download/v3.0.7/afrog_3.0.7_macOS_arm64.zip
unzip afrog_3.0.7_macOS_arm64.zip -d afrog_3.0.7_macOS_arm64
cd afrog_3.0.7_macOS_arm64

手动编译可执行文件

1
2
3
git clone https://github.com/zan8in/afrog.git
cd afrog
go build cmd/afrog/main.go

扫描单个目标

1
./afrog -t <url> -o <file_name>.html

扫描多个目标

1
./afrog -T <url> -o <file_name>.html

完成